home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / hf.dir / 00068_Search MS.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  5.0 KB  |  166 lines

  1. global gHFoldTag, gHFSave33, gHFSave34, gHFSave35, gHFSave36, gHFCatLastLine, gHFsList, gHFsMax, gHFoldSList, gHFoldSMax, gHFoldSRes, gHFResultLastLine, gHFposition
  2.  
  3. on doSearchDialog
  4.   set gHFoldTag to -1
  5.   set gHFResultLastLine to 0
  6.   set gHFoldSList to gHFsList
  7.   set gHFoldSMax to gHFsMax
  8.   set gHFoldSRes to the text of cast "Result List"
  9.   set gHFCatLastLine to 1
  10.   set gHFSave33 to the visible of sprite 33
  11.   set gHFSave34 to the visible of sprite 34
  12.   set gHFSave35 to the visible of sprite 35
  13.   set gHFSave36 to the visible of sprite 36
  14.   set the visible of sprite 33 to 1
  15.   repeat with vI = 34 to 36
  16.     set the visible of sprite vI to 1
  17.   end repeat
  18.   set the visible of sprite 44 to 0
  19.   set the visible of sprite 45 to 0
  20.   set the text of cast "Choise List" to EMPTY
  21.   set the textFont of field "Cat List" to "Arial"
  22.   set the textSize of field "Cat List" to 10
  23.   if gHFsMax = 0 then
  24.     set the text of cast "Result List" to "*No Matches Found*"
  25.     set the textFont of field "Result List" to "Arial"
  26.     set the textSize of field "Result List" to 10
  27.     set the visible of sprite 28 to 0
  28.   end if
  29.   set the text of cast "Cat List" to EMPTY
  30.   set the textFont of field "Cat List" to "Arial"
  31.   set the textSize of field "Cat List" to 10
  32.   set the text of cast "SDKeyword Field" to EMPTY
  33.   set the textFont of field "SDKeyword Field" to "Arial"
  34.   set the textSize of field "SDKeyword Field" to 12
  35.   puppetSound("pheeu.aif")
  36.   go("Search")
  37.   puppetSprite(24, 1)
  38.   setCategory(#sports)
  39. end
  40.  
  41. on endSearchDialog
  42.   puppetSprite(23, 0)
  43.   puppetSprite(24, 0)
  44.   set gHFoldSList to []
  45.   set gHFoldSMax to 0
  46.   set gHFoldSRes to EMPTY
  47.   set the visible of sprite 28 to 1
  48.   set the visible of sprite 33 to gHFSave33
  49.   set the visible of sprite 34 to gHFSave34
  50.   set the visible of sprite 35 to gHFSave35
  51.   set the visible of sprite 36 to gHFSave36
  52.   set the visible of sprite 37 to 1
  53.   set the visible of sprite 44 to 1
  54.   set the visible of sprite 45 to 1
  55.   go(1)
  56. end
  57.  
  58. on setCategory aCat
  59.   if aCat = #sports then
  60.     set the text of cast "Cat List" to the text of cast "SDSports List"
  61.     set vTagSprite to 33
  62.     set vCat to the number of cast "SDSports-down"
  63.     set vFrame to "Search"
  64.   else
  65.     if aCat = #event then
  66.       set the text of cast "Cat List" to the text of cast "SDEvent List"
  67.       set vTagSprite to 34
  68.       set vCat to the number of cast "SDEvents-down"
  69.       set vFrame to "Search-2"
  70.     else
  71.       if aCat = #awards then
  72.         set the text of cast "Cat List" to the text of cast "SDAwards List"
  73.         set vTagSprite to 35
  74.         set vCat to the number of cast "SDAwards-down"
  75.         set vFrame to "Search-3"
  76.       else
  77.         if aCat = #other then
  78.           set the text of cast "Cat List" to the text of cast "SDOther List"
  79.           set vTagSprite to 36
  80.           set vCat to the number of cast "SDOther-down"
  81.           set vFrame to "Search-4"
  82.         end if
  83.       end if
  84.     end if
  85.   end if
  86.   go(vFrame)
  87.   set the castNum of sprite 24 to vCat
  88.   set the textFont of field "Cat List" to "Arial"
  89.   set the textSize of field "Cat List" to 10
  90. end
  91.  
  92. on addDelCategory aCat
  93.   set aCat to aCat & RETURN
  94.   set vTmp to the text of cast "Choise List"
  95.   set vPos to offset(aCat, vTmp)
  96.   if vPos = 0 then
  97.     set vTmp to vTmp & aCat
  98.   else
  99.     delete char vPos to vPos + the number of chars in aCat - 1 of vTmp
  100.   end if
  101.   set the text of cast "Choise List" to vTmp
  102.   set the textFont of field "Choise List" to "Arial"
  103.   set the textSize of field "Choise List" to 10
  104.   set the foreColor of cast "Choise List" to 255
  105. end
  106.  
  107. on doSearch
  108.   SetCursor(#wait)
  109.   set vText to the text of cast "Choise List"
  110.   set vKeywords to []
  111.   set vlines to the number of lines in vText - 1
  112.   repeat with vI = 1 to vlines
  113.     add(vKeywords, line vI of vText)
  114.   end repeat
  115.   set vRet to AthleteSearch(EMPTY, vKeywords)
  116.   set vResult to EMPTY
  117.   set vMax to count(vRet)
  118.   set gHFsMax to vMax
  119.   set gHFsList to []
  120.   if gHFsMax = 0 then
  121.     set vResult to "*No Matches Found*"
  122.     set the visible of sprite 28 to 0
  123.   else
  124.     set the visible of sprite 28 to 1
  125.     repeat with vI = 1 to vMax
  126.       set vInfo to GetAthInfo(getAt(vRet, vI))
  127.       add(gHFsList, vInfo)
  128.       set vResult to vResult & item 5 of vInfo & RETURN
  129.     end repeat
  130.   end if
  131.   set the text of cast "Result List" to " "
  132.   set the textFont of field "Result List" to "Arial"
  133.   set the textSize of field "Result List" to 12
  134.   set the foreColor of cast "Result List" to 255
  135.   put vResult before field "Result List"
  136.   SetCursor(#normal)
  137. end
  138.  
  139. on resetSearch
  140.   set the text of cast "Choise List" to EMPTY
  141.   set the text of cast "SDKeyword Field" to EMPTY
  142.   set gHFsMax to 0
  143.   set gHFsList to []
  144.   set the text of cast "Result List" to "*No Matches Found*"
  145.   set the textFont of field "Result List" to "Arial"
  146.   set the textSize of field "Result List" to 12
  147.   set the foreColor of cast "Result List" to 255
  148. end
  149.  
  150. on searchGoto aPos
  151.   if voidp(aPos) or voidp(gHFsMax) then
  152.     beep()
  153.     exit
  154.   end if
  155.   if (aPos < 1) or (aPos > gHFsMax) then
  156.     beep()
  157.     exit
  158.   end if
  159.   SetCursor(#wait)
  160.   endSearchDialog()
  161.   setAthleteMode(0, 1)
  162.   set gHFposition to aPos
  163.   paintscreen()
  164.   SetCursor(#normal)
  165. end
  166.